精  
【大功告成】纳秘版高位岩浆器V1.0隆重发布!!!
id: 2114913547 | 楼主:nmnmoooh | 返回首页
id: 28520350992
1L | 作者:nmnmoooh | 发布于 2013-01-22 20:53

一楼泡岩浆


id: 28520446417
3L | 作者:nmnmoooh | 发布于 2013-01-22 20:56

哈,今天心血来潮打开了VB,突然想到可不可以编一个辅助代码设计的小程序呢……于是在 @幸运の三叶草 同志的指导和帮助下成功制作出了这个高位岩浆器。


id: 28520460130
4L | 作者:nmnmoooh | 发布于 2013-01-22 20:56

扔地址
nmnmoooh888.ys168.com



id: 28520479856
5L | 作者:bluesun0505 | 发布于 2013-01-22 20:57

沙发!!!


id: 28520542676
6L | 作者:123568024 | 发布于 2013-01-22 20:58

好吧我找到了……


id: 28520580947
7L | 作者:nmnmoooh | 发布于 2013-01-22 20:59

至于这个程序的介绍,大家自行查看压缩包里面的readme文件吧……我这里说一点。
大家都知道,wyi同志在以前也做过一个这样的程序,但是有两个缺点:一是不够智能,生成的代码可能过多;二是要一次又一次地把代码粘贴回去关卡中。而纳秘版的则解决了这两个问题,它提供了两种不同的模式,能生成应该生成而且必须生成代码;虽然每次还是只能处理一个代码,但生成的代码可以堆积,等到最后再一次性粘帖回去。



id: 28520606570
8L | 作者:nmnmoooh | 发布于 2013-01-22 21:00

很好,祝大家玩的开心,有什么问题的请找我 ^_^

回复
bluesun0505 于 2013-01-22 21:03:41 id: 28520723272
不精吗?
nmnmoooh 于 2013-01-22 21:05:34 id: 28520794964
回复 bluesun0505 :已精
毒蘑菇vn 于 2013-01-22 21:12:52 id: 28521074701
回复 nmnmoooh :我在想我如果在纳秘发这个贴之前先发个贴会不会精品就是我的了【反正群里有】?【大雾
nmnmoooh 于 2013-01-22 21:14:40 id: 28521143431
回复 毒蘑菇vn :群里有正式版?笑死
nmnmoooh 于 2013-01-22 21:14:51 id: 28521150240
回复 毒蘑菇vn :
毒蘑菇vn 于 2013-01-22 21:20:32 id: 28521366595
回复 nmnmoooh :哦我没仔细看就扫了一眼


id: 28521122824
9L | 作者:nmnmoooh | 发布于 2013-01-22 21:14

at点人@lahztc1 @wyiming6688 @毒蘑菇vn @下辈子当个blu @祝贺高考成功 @zqh——123@gaere54 @Fahlee_5@R大次郎@newlife2017

回复
nmnmoooh 于 2013-01-22 21:15:16 id: 28521166489
@zqh——123 @Fahlee_5 @R大次郎 @newlife2017
lahztc1 于 2013-01-22 21:23:40 id: 28521486023
呵呵
zqh——123 于 2013-01-22 21:29:30 id: 28521708491
回复 nmnmoooh :来啦!
123568024 于 2013-01-22 21:30:04 id: 28521730108
回复 nmnmoooh :呵呵
newlife2017 于 2013-01-22 21:32:48 id: 28521834599
回复 @nmnmoooh :中枪


id: 28521332230
10L | 作者:下辈子当个Blu | 发布于 2013-01-22 21:19

神了


id: 28521490465
11L | 作者:lahztc1 | 发布于 2013-01-22 21:23

前排占座


id: 28521680649
12L | 作者:nmnmoooh | 发布于 2013-01-22 21:28

声明:此程序有严重bug,立刻修复!!!!!!

回复
bluesun0505 于 2013-01-22 21:29:51 id: 28521721802
bluesun0505 于 2013-01-22 21:29:57 id: 28521725712
回复 bluesun0505 :加油
123568024 于 2013-01-22 21:34:32 id: 28521900324
什么bug?
下辈子当个Blu 于 2013-01-22 21:37:50 id: 28522025957
回复 123568024 :倒序
nmnmoooh 于 2013-01-22 21:48:58 id: 28522453524
已经修复完毕!!!原地址下载


id: 28521716069
13L | 作者:zqh——123 | 发布于 2013-01-22 21:29

好!


id: 28523235812
14L | 作者:gaere54 | 发布于 2013-01-22 22:09

好!!


id: 28523338166
15L | 作者:nmnmoooh | 发布于 2013-01-22 22:11

附赠代码 有事没事就来看看
Private Sub Command1_Click()
Dim a, b, c, d As Long
a = InputBox("请输入初始岩浆代码!", "高位岩浆器")
b = a Mod 1000
c = (480 - b) / 7
d = a - b + 487
While a < d
d = d - 7
If Not a >= d Then Text1.Text = Text1.Text & "0" & d & vbCrLf
Wend
Text1.Text = Text1.Text & a & vbCrLf
End Sub Private Sub Command2_Click()
Dim a, b, c, e As Long
a = InputBox("首先请将你的岩浆高度输入进去!(单位:格子数)", "高位岩浆器")
b = InputBox("然后输入初始岩浆代码!", "高位岩浆器")
c = a * 32
e = b + c + 7
While b < e
e = e - 7
If Not b >= e Then Text1.Text = Text1.Text & "0" & e & vbCrLf
Wend
Text1.Text = Text1.Text & b & vbCrLf
End Sub



id: 28533018333
16L | 作者:bluesun0505 | 发布于 2013-01-23 09:18

看起来好复杂,纳秘辛苦了!

回复
nmnmoooh 于 2013-01-23 10:07:26 id: 28534247344
目测比wyi的简单很多……
zqh——123 于 2013-01-26 09:43:48 id: 28635992660
回复 nmnmoooh :其实也不难
nmnmoooh 于 2013-01-26 11:10:05 id: 28638446301
回复 zqh——123 :总比探照灯的简单多了
zqh——123 于 2013-01-26 22:11:43 id: 28660353351
回复 nmnmoooh :嗯


id: 28567962181
17L | 作者:nmnmoooh | 发布于 2013-01-24 09:35

……


id: 28571912135
18L | 作者:newlife2017 | 发布于 2013-01-24 11:47

顶贴压制!


id: 28649700973
20L | 作者:虫蛊蠡 | 发布于 2013-01-26 17:14

#include "stdio.h"
#include "stdlib.h"
main()
{
int a;
printf("请输入您的岩浆代码:\n",a+7*30);
scanf("%d",&a);
printf("0""%d\n",a+7*30);
printf("0""%d\n",a+7*29);
printf("0""%d\n",a+7*28);
printf("0""%d\n",a+7*27);
printf("0""%d\n",a+7*26);
printf("0""%d\n",a+7*25);
printf("0""%d\n",a+7*24);
printf("0""%d\n",a+7*23);
printf("0""%d\n",a+7*22);
printf("0""%d\n",a+7*21);
printf("0""%d\n",a+7*20);
printf("0""%d\n",a+7*19);
printf("0""%d\n",a+7*18);
printf("0""%d\n",a+7*17);
printf("0""%d\n",a+7*16);
printf("0""%d\n",a+7*15);
printf("0""%d\n",a+7*14);
printf("0""%d\n",a+7*13);
printf("0""%d\n",a+7*12);
printf("0""%d\n",a+7*13);
printf("0""%d\n",a+7*12);
printf("0""%d\n",a+7*11);
printf("0""%d\n",a+7*10);
printf("0""%d\n",a+7*9);
printf("0""%d\n",a+7*8);
printf("0""%d\n",a+7*7);
printf("0""%d\n",a+7*6);
printf("0""%d\n",a+7*5);
printf("0""%d\n",a+7*4);
printf("0""%d\n",a+7*3);
printf("0""%d\n",a+7*2);
printf("0""%d\n",a+7*1);
printf("%d\n",a);
system("pause");
}
上楼代码错误



id: 28649753942
21L | 作者:虫蛊蠡 | 发布于 2013-01-26 17:16

#include "stdio.h"
#include "stdlib.h"
main()
{
int a;
printf("请输入您的岩浆代码:");
scanf("%d",&a);
printf("0""%d\n",a+7*30);
printf("0""%d\n",a+7*29);
printf("0""%d\n",a+7*28);
printf("0""%d\n",a+7*27);
printf("0""%d\n",a+7*26);
printf("0""%d\n",a+7*25);
printf("0""%d\n",a+7*24);
printf("0""%d\n",a+7*23);
printf("0""%d\n",a+7*22);
printf("0""%d\n",a+7*21);
printf("0""%d\n",a+7*20);
printf("0""%d\n",a+7*19);
printf("0""%d\n",a+7*18);
printf("0""%d\n",a+7*17);
printf("0""%d\n",a+7*16);
printf("0""%d\n",a+7*15);
printf("0""%d\n",a+7*14);
printf("0""%d\n",a+7*13);
printf("0""%d\n",a+7*12);
printf("0""%d\n",a+7*13);
printf("0""%d\n",a+7*12);
printf("0""%d\n",a+7*11);
printf("0""%d\n",a+7*10);
printf("0""%d\n",a+7*9);
printf("0""%d\n",a+7*8);
printf("0""%d\n",a+7*7);
printf("0""%d\n",a+7*6);
printf("0""%d\n",a+7*5);
printf("0""%d\n",a+7*4);
printf("0""%d\n",a+7*3);
printf("0""%d\n",a+7*2);
printf("0""%d\n",a+7*1);
printf("%d\n",a);
system("pause");
}
这次才是正确的……


回复
123568024 于 2013-01-26 23:02:08 id: 28662298082
我的天,强悍!


id: 28708160163
22L | 作者:wyiming6688 | 发布于 2013-01-28 11:28

。我去,可以这么算

回复
nmnmoooh 于 2013-01-28 14:56:59 id: 28715343185
那时还不会字符串截取只好硬着头皮用求余函数……居然成功了


id: 28725924815
23L | 作者:虫蛊蠡 | 发布于 2013-01-28 20:14

#include "stdio.h"
#include "stdlib.h"
main()
{
int a,b,c,t;
b=30;
c=13;
printf("虫蛊蠡想要知道您的岩浆初始代码:");
scanf("%d",&a);
system("cls");
printf("代码为[%d]时,高位岩浆代码为:\n",a);
while(b>=12)
{
printf("0""%d\n",a+7*b);
b=b-1;
}
while(c<=13&&c>0)
{
printf("0""%d\n",a+7*c);
c=c-1;
}
printf("%d\n",a);
system("pause");
return 0;
}
改进了一下……


回复
trashy_mario 于 2013-01-28 20:47:33 id: 28727176887
用循环代码简单多了……


id: 108028467058
25L | 作者:zqh——123 | 发布于 2017-06-12 11:49

这什么情况,是有人wf还是?

回复
巃嵸巋巚 于 2017-06-12 12:33:10 id: 108029734264
有人爆吧+自删贴子
张云天我最爱 于 2017-06-12 13:35:51 id: 108031639731
已经被续了
zqh——123 于 2017-06-12 16:33:46 id: 108037095547
回复 张云天我最爱 :续是什么
张云天我最爱 于 2017-06-12 16:49:08 id: 108037606938
回复 zqh——123 :自行百度
张云天我最爱 于 2017-06-12 22:08:02 id: 108048193179
回复 巃嵸巋巚 : 王Ⅷ蛋
李泽LXVI 于 2017-06-13 11:18:22 id: 108063518620
回复 张云天我最爱 :王VIII蛋!
zqh——123 于 2017-06-13 11:22:23 id: 108063639124
你俩干嘛
张云天我最爱 于 2017-06-13 17:47:18 id: 108075388625
回复 zqh——123 :某人把李欣泽的帖子删掉了
李泽LXVI 于 2017-06-13 21:10:02 id: 108081686518
回复 zqh——123 :因为挖坟=王VIII蛋!
张云天我最爱 于 2017-06-13 21:15:51 id: 108081873045
回复 李泽LXVI :对对对